home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / cvs-1.8 / cvs-1 / cvs-1.8.1 / lib / getline.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-06  |  297 b   |  16 lines

  1. #ifndef _getline_h_
  2. #define _getline_h_ 1
  3.  
  4. #include <stdio.h>
  5.  
  6. #if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
  7. #define __PROTO(args) args
  8. #else
  9. #define __PROTO(args) ()
  10. #endif  /* GCC.  */
  11.  
  12. int
  13.   getline __PROTO ((char **_lineptr, size_t *_n, FILE *_stream));
  14.  
  15. #endif /* _getline_h_ */
  16.